From: Ævar Arnfjörð Bjarmason Date: Thu, 21 Jul 2005 23:07:58 +0000 (+0000) Subject: * Documentation X-Git-Tag: 1.5.0beta4~73 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=6f8b5da585e5ec032489e04a91e7c2a010687148;p=lhc%2Fweb%2Fwiklou.git * Documentation --- diff --git a/includes/Exif.php b/includes/Exif.php index 5c89b68fff..5ee4eabd37 100644 --- a/includes/Exif.php +++ b/includes/Exif.php @@ -84,6 +84,8 @@ class Exif { /** * Constructor + * + * @param string $file */ function Exif( $file ) { /** @@ -305,8 +307,6 @@ class Exif { } } - /**#@-*/ - /** * Make $this->mFilteredExifData */ @@ -377,7 +377,9 @@ class Exif { /**#@+ * Validates if a tag value is of the type it should be according to the Exif spec - * + * + * @access private + * * @param mixed $in The input value to check * @return bool */ @@ -472,6 +474,8 @@ class Exif { /** * Validates if a tag has a legal value according to the Exif spec * + * @access private + * * @param string $tag The tag to check * @param mixed $val The value of the tag * @return bool @@ -516,6 +520,8 @@ class Exif { /** * Conviniance function for debugging output * + * @access private + * * @param mixed $in * @param string $fname * @param mixed $action @@ -945,6 +951,8 @@ class FormatExif { /** * Conviniance function for getFormattedData() * + * @access private + * * @param string $tag The tag name to pass on * @param string $val The value of the tag * @param string $arg An argument to pass ($1) @@ -957,6 +965,11 @@ class FormatExif { } /** + * Format a number, convert numbers from fractions into floating point + * numbers + * + * @access private + * * @param mixed $num The value to format * @return mixed A floating point number or whatever we were fed */